home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-04-05 | 1.1 KB | 46 lines | [TEXT/PJMM] |
- { This file has been processed by The THINK Pascal Source Converter, v1.1. }
-
- {}
- {Created: Sunday, January 6, 1991 at 10:25 PM}
- { Controls.p}
- { Pascal Interface to the Macintosh Libraries}
- {}
- { Copyright Apple Computer, Inc. 1985-1990}
- { All rights reserved}
- {}
-
-
-
- { RMS 4/3/91 Modified to exclude declarations already in the THINK Pascal built-in interfaces }
-
-
-
- unit Controls;
- interface
- uses
- Types, Quickdraw;
-
- const
- popupMenuProc = 1008; { 63 * 16 }
- popupFixedWidth = $0001; { popup menu CDEF variation codes }
- popupUseAddResMenu = $0004;
- popupUseWFont = $0008;
- popupTitleBold = $00000100; { Popup Title characteristics }
- popupTitleItalic = $00000200;
- popupTitleUnderline = $00000400;
- popupTitleOutline = $00000800;
- popupTitleShadow = $00001000;
- popupTitleCondense = $00002000;
- popupTitleExtend = $00004000;
- popupTitleNoStyle = $00008000;
- popupTitleLeftJust = $00000000;
- popupTitleCenterJust = $00000001;
- popupTitleRightJust = $000000FF;
-
- popupMenuCDEFproc = popupMenuProc; { synonym for compatibility }
-
-
- implementation
- end.
-
-